home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / sticpsrc.lzh / SOURCE.ARC / CONFIG.H < prev    next >
Text File  |  1990-05-29  |  2KB  |  51 lines

  1. /* Software options */
  2. #define IP        1    /* Include TCP/IP code */
  3. #define SERVERS        1    /* Include TCP servers */
  4. #define FTPC        1    /* Include FTP client */
  5. #define SMTPC        1    /* Include SMTP client */
  6. #define TRACE        1    /* Include packet tracing code */
  7. #define MHEARD        1    /* Include station monitoring code */
  8. #if (!defined(MSDOS) || defined(LARGEDATA))
  9. # define RCMD        1    /* Include RCMD server */
  10. # define TNC2        1    /* Include TNC2 emulator */
  11. #endif
  12. #undef    SCREEN        1    /* Include SCREEN Ansi terminal emulator */
  13. #define NSESSIONS    10    /* Number of interactive clients */
  14.  
  15. /* Hardware configuration */
  16. #if (defined(MSDOS) && !defined(MSC))
  17. # undef     PC_EC        1    /* 3-Com 3C501 Ethernet controller */
  18. # define PACKET        1    /* FTP Software's Packet Driver interface */
  19. #endif
  20. #define SLIP        1    /* Serial Line IP subnet code */
  21. #define KISS        1    /* KISS TNC code */
  22. #undef    HAPN        1    /* Hamilton Area Packet Network driver code */
  23. #undef    EAGLE        1    /* Eagle card driver */
  24. #undef    PC100        1    /* PAC-COM PC-100 driver code */
  25. #define SCC        1    /* Z8530 SCC driver code */
  26. #undef    APPLETALK    1    /* Appletalk interface (Macintosh) */
  27. #if (!defined(MSDOS) || defined(LARGEDATA))
  28. # define NRS        1    /* NET/ROM async interface */
  29. # define NETROM        1    /* NET/ROM network support */
  30. #endif
  31.  
  32. #if (defined(NRS))
  33. # undef     NETROM
  34. # define NETROM        1    /* NRS implies NETROM */
  35. #endif
  36.  
  37. #if (defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100)||defined(SCC))
  38. # undef     AX25
  39. # define AX25        1    /* AX.25 subnet code */
  40. #endif
  41.  
  42. /* KISS TNC, SLIP, NRS or PACKET implies ASY */
  43. #if (defined(KISS) || defined(PACKET) || defined(NRS) || defined(SLIP))
  44. # undef     ASY
  45. # define ASY        1    /* Asynch driver code */
  46. #endif
  47.  
  48. #if (defined(PC_EC) || defined(PACKET))
  49. # define ETHER        1    /* Generic Ethernet code */
  50. #endif
  51.